From: Juanma Barranquero Date: Mon, 9 May 2011 23:57:40 +0000 (+0200) Subject: lisp/misc.el: Require tabulated-list.el during compilation. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~3867 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=8cafb9e0139de912d25b2c42e551d9ef902370ac;p=emacs.git lisp/misc.el: Require tabulated-list.el during compilation. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index de503b74da0..98ea81d322c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-05-09 Juanma Barranquero + + * misc.el: Require tabulated-list.el during compilation. + 2011-05-09 Chong Yidong * progmodes/compile.el (compilation-start): Run diff --git a/lisp/misc.el b/lisp/misc.el index e05173992b6..e50b5b38c75 100644 --- a/lisp/misc.el +++ b/lisp/misc.el @@ -25,6 +25,9 @@ ;;; Code: +(eval-when-compile + (require 'tabulated-list)) + (defun copy-from-above-command (&optional arg) "Copy characters from previous nonblank line, starting just above point. Copy ARG characters, but not past the end of that line. @@ -182,7 +185,6 @@ The return value is always nil." (display-buffer buffer) nil) - (provide 'misc) ;;; misc.el ends here